home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jazlib.arc / CLI.ASM < prev    next >
Assembly Source File  |  1988-12-18  |  545b  |  19 lines

  1. Comment *
  2. ┌────────────────────────────────────────────────────────────────────────────┐
  3. │Cli.asm                                                                     │
  4. │Clears the interrupt flag from C.                                           │
  5. │Usage: Cli                                                                  │
  6. └────────────────────────────────────────────────────────────────────────────┘
  7. *
  8.  
  9.     assume cs:_text
  10. _text    segment public byte 'code'
  11.     public _cli
  12.  
  13. _cli    proc near
  14.     cli
  15.     ret
  16. _cli        endp
  17. _text    ends
  18. end
  19.